/* 我是註解內容 */
// 我是註解內容
※ JS傳遞參數時只能傳遞一個元素,React v16.2.0以後可以使用<React.Fragment>標籤包裹最外層,如此便不會多一個 <div>
標籤
const testFunction =()=> {
return(
<React.Fragment>
<button> 大家好 </button>
<h1> 我不好 </h1>
</React.Fragment>
);
}
<></>
,是 <Fragment></Fragment>
的省略寫法data-*
""
包圍,預設型別為 string{ }
加入不同型別的參數,或者使用 JS 的變數class
需要使用className
,而for
需要使用htmlFor
var props = {};
props.foo = x;
props.bar = y;
var component = <Component {...props} />;
px
const divStyle = {
color: 'blue',
backgroundImage: 'url(' + imgUrl + ')',
};
function HelloWorldComponent() {
return <div style={divStyle}>Hello World!</div>;
}